Added `-[NSArray validateAsPropertyList]` and `-[NSDictionary validateAsPropertyList...
[adiumx.git] / Plugins / Purple Service / AMXMLConsoleController.h
blob1522373594d4f6f196fc0214329cb302f87e403b
1 //
2 // AMXMLConsoleController.h
3 // Adium
4 //
5 // Created by Andreas Monitzer on 2007-06-06.
6 // Copyright 2007 Andreas Monitzer. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
10 #import <AdiumLibpurple/PurpleCommon.h>
12 @interface AMXMLConsoleController : NSObject {
13 IBOutlet NSWindow *xmlConsoleWindow;
14 IBOutlet NSTextView *xmlLogView;
15 IBOutlet NSTextView *xmlInjectView;
17 PurpleConnection *gc;
20 - (IBAction)sendXML:(id)sender;
21 - (IBAction)clearLog:(id)sender;
22 - (IBAction)showWindow:(id)sender;
23 - (void)close;
25 - (void)setPurpleConnection:(PurpleConnection *)gc;
26 @end